home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 2 of 2).iso / cheats / mmom30s.exe / SEND.BAT < prev    next >
DOS Batch File  |  1995-03-21  |  745b  |  45 lines

  1. @echo off
  2.  
  3. del %1.zip
  4.  
  5.  
  6.  
  7. REM Crunch Send File (Optional)
  8. crunch30 %1
  9.  
  10.  
  11.  
  12. REM Zip Send File 
  13. REM zip the file %1.s?? if you use crunch30, %1.m?? otherwise
  14. pkzip %1.zip %1.s??
  15. REM (assumes pkzip is in a "path" variable directory--specify directory
  16. REM                     otherwise.
  17.  
  18.  
  19. REM UUENCODE HERE IF YOU ARE SENDING BY TEXT EMAIL
  20.  
  21.  
  22.  
  23.  
  24. REM Send Lines Go Here--Send %1.zip, or Send %1."extension", like uue,
  25. REM if you have changed the extension with a UUENCODEr, etc.
  26.  
  27.  
  28. REM BEGIN SEND LINE(S) 
  29.  
  30. :LOOP
  31. SZMODEM PORT 1 SPEED 2400 SZ %1.ZIP
  32. IF ERRORLEVEL 1 GOTO LOOP
  33.  
  34. REM END SEND LINE(S)
  35.  
  36.  
  37.  
  38.  
  39.  
  40. REM Delete Send File After Send (If using crunch30.exe: Delete %1.m??
  41. REM             otherwise.
  42.  
  43. del %1.s??
  44.  
  45.